/* Abune Samuel School - About Us Section Styles */

/* About Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(44, 90, 160, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.about-hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.2);
}

.about-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-hero-title span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.about-hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(44, 90, 160, 0.1);
    z-index: -1;
}

.about-hero-text {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-stats-mini {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.about-stat-item {
    text-align: center;
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.about-stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero-image {
    position: relative;
    z-index: 2;
}

.about-hero-image img {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.about-hero-image:hover img {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.about-image-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: white;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
}

.about-image-badge i {
    font-size: 2rem;
    color: var(--primary-color);
}

.about-image-badge span {
    font-weight: 700;
    color: var(--dark-color);
    font-size: 1.1rem;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: white;
}

.mission-card, .vision-card {
    background: white;
    border-radius: 30px;
    padding: 50px 40px;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mission-card:hover::before, .vision-card:hover::before {
    transform: scaleX(1);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(44, 90, 160, 0.1);
}

.mission-icon, .vision-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1) 0%, rgba(69, 123, 157, 0.1) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 3rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.mission-card:hover .mission-icon,
.vision-card:hover .vision-icon {
    background: var(--gradient-primary);
    color: white;
    transform: rotateY(180deg);
}

.mission-card h3, .vision-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.mission-card p, .vision-card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.mission-list, .vision-list {
    list-style: none;
    padding: 0;
}

.mission-list li, .vision-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #444;
}

.mission-list li i, .vision-list li i {
    color: var(--success-color);
    font-size: 1.2rem;
}

/* Core Values Section */
.core-values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.value-card {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 50px rgba(44, 90, 160, 0.2);
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover .value-icon,
.value-card:hover h4,
.value-card:hover p {
    color: white;
}

.value-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1) 0%, rgba(69, 123, 157, 0.1) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) rotateY(180deg);
}

.value-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    transition: color 0.3s ease;
}

/* History Timeline */
.history-section {
    padding: 80px 0;
    background: white;
}

.history-timeline {
    position: relative;
    padding: 40px 0;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 10px 25px rgba(44, 90, 160, 0.2);
}

.timeline-dot i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.timeline-content {
    width: calc(50% - 50px);
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(44, 90, 160, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    right: -15px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid white;
}

.timeline-year {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.timeline-content p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Leadership Section */
.leadership-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.leader-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.leader-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 50px rgba(44, 90, 160, 0.15);
}

.leader-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.leader-card:hover .leader-image img {
    transform: scale(1.1);
}

.leader-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transition: bottom 0.3s ease;
}

.leader-card:hover .leader-social {
    bottom: 0;
}

.leader-social a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.leader-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.leader-info {
    padding: 25px;
    text-align: center;
}

.leader-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.leader-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.leader-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Stats Section Enhanced */
.about-stats-section {
    padding: 60px 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.about-stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-stats-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.stat-card {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 30px;
}

.stat-card .stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: rotateY(180deg);
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.stat-card .stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-text {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2.3rem;
    }
    
    .history-timeline::before {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -15px;
        right: auto;
        border-right: 15px solid white;
        border-left: none;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-stats-mini {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .about-stat-item {
        flex: 0 0 calc(50% - 15px);
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .mission-card, .vision-card {
        padding: 30px 25px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .stat-card .stat-number {
        font-size: 2.5rem;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-content h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 1.8rem;
    }
    
    .about-stat-number {
        font-size: 2rem;
    }
    
    .about-stat-label {
        font-size: 0.8rem;
    }
    
    .about-image-badge {
        left: 10px;
        padding: 10px 15px;
    }
    
    .about-image-badge i {
        font-size: 1.5rem;
    }
    
    .about-image-badge span {
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .mission-icon, .vision-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .timeline-dot {
        width: 45px;
        height: 45px;
    }
    
    .timeline-dot i {
        font-size: 1.2rem;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        padding: 15px;
    }
}

/* Placeholder for images (remove when you have actual images) */
.leader-image {
    background: linear-gradient(135deg, #2c5aa0, #1d3557);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.leader-image::before {
    content: '👤';
    font-size: 5rem;
    opacity: 0.5;
}

.about-hero-image img[src=""] {
    background: linear-gradient(135deg, #2c5aa0, #1d3557);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.about-hero-image img[src=""]::before {
    content: 'አቡነ ሳሙኤል ትምህርት ቤት';
}




/* Abune Samuel School - Admissions Section Styles */

/* Admissions Hero Section */
.admissions-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.admissions-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(44, 90, 160, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.admissions-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.admissions-hero-content {
    position: relative;
    z-index: 2;
}

.admissions-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(44, 90, 160, 0.3);
}

.admissions-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.admissions-hero-title span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.admissions-hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(44, 90, 160, 0.1);
    z-index: -1;
}

.admissions-hero-text {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.admissions-deadline {
    background: rgba(230, 57, 70, 0.1);
    border-left: 5px solid var(--secondary-color);
    padding: 20px 25px;
    border-radius: 15px;
    margin-top: 30px;
}

.admissions-deadline i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-right: 15px;
}

.admissions-deadline strong {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.admissions-hero-image {
    position: relative;
    z-index: 2;
}

.admissions-hero-image img {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    width: 100%;
}

.admissions-hero-image:hover img {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.admissions-image-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: white;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 20px;
    animation: float 3s ease-in-out infinite;
}

.admissions-image-badge i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.admissions-image-badge div {
    text-align: left;
}

.admissions-image-badge span {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

.admissions-image-badge strong {
    font-size: 1.4rem;
    color: var(--dark-color);
}

/* Process Steps */
.process-section {
    padding: 80px 0;
    background: white;
}

.process-step {
    text-align: center;
    padding: 30px;
    position: relative;
    height: 100%;
}

.process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 30%;
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-weight: 300;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: white;
    font-size: 2rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(44, 90, 160, 0.3);
    position: relative;
    z-index: 2;
}

.step-number::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    background: rgba(44, 90, 160, 0.1);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

.process-step h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Requirements Section */
.requirements-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.requirements-card {
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.requirements-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(44, 90, 160, 0.1);
}

.requirements-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.requirements-header i {
    font-size: 3rem;
    color: var(--primary-color);
    background: rgba(44, 90, 160, 0.1);
    padding: 20px;
    border-radius: 20px;
}

.requirements-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.requirements-list {
    list-style: none;
    padding: 0;
}

.requirements-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.requirements-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.requirements-list li i {
    color: var(--success-color);
    font-size: 1.3rem;
    margin-top: 3px;
}

.requirements-list li div {
    flex: 1;
}

.requirements-list li strong {
    display: block;
    color: var(--dark-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.requirements-list li span {
    color: #666;
    font-size: 0.95rem;
}

/* Fee Structure */
.fee-section {
    padding: 80px 0;
    background: white;
}

.fee-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(44, 90, 160, 0.1);
    position: relative;
}

.fee-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 50px rgba(44, 90, 160, 0.15);
}

.fee-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    position: relative;
    z-index: 2;
}

.fee-card.popular:hover {
    transform: scale(1.05) translateY(-15px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fee-header {
    background: var(--gradient-primary);
    color: white;
    padding: 30px;
    text-align: center;
}

.fee-header i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.fee-header h4 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.fee-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
}

.fee-body {
    padding: 30px;
}

.fee-amount {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px dashed #eee;
}

.fee-amount .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
}

.fee-amount .period {
    color: #666;
    font-size: 0.9rem;
}

.fee-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.fee-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.fee-features li i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.fee-features li i.bi-x-circle {
    color: #ccc;
}

.fee-features li span.muted {
    color: #999;
    text-decoration: line-through;
}

.fee-footer {
    text-align: center;
    padding: 0 30px 30px;
}

.fee-footer .btn {
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
}

/* Application Form */
.application-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.application-form {
    background: white;
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.application-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: var(--gradient-primary);
}

.form-title {
    text-align: center;
    margin-bottom: 50px;
}

.form-title h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.form-title p {
    color: #666;
    font-size: 1.1rem;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.form-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.form-section-title i {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.form-section-title h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 12px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

.form-actions .btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 25px;
    font-weight: 700;
    color: var(--dark-color);
    background: white;
    border: none;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: rgba(44, 90, 160, 0.05);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(44, 90, 160, 0.1);
}

.accordion-button::after {
    background-size: 1.2rem;
    background-position: center;
}

.accordion-body {
    padding: 0 25px 25px 25px;
    color: #666;
    line-height: 1.8;
}

/* Important Dates */
.dates-section {
    padding: 60px 0;
    background: var(--gradient-primary);
    color: white;
}

.date-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.date-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.date-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.date-card h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.date-card .date {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.date-card .day {
    opacity: 0.9;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .admissions-hero-title {
        font-size: 2.5rem;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .fee-card.popular {
        transform: scale(1);
    }
    
    .fee-card.popular:hover {
        transform: translateY(-15px);
    }
    
    .application-form {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .admissions-hero-title {
        font-size: 2rem;
    }
    
    .admissions-hero-text {
        font-size: 1rem;
    }
    
    .admissions-image-badge {
        right: 10px;
        padding: 15px 20px;
    }
    
    .admissions-image-badge i {
        font-size: 2rem;
    }
    
    .admissions-image-badge strong {
        font-size: 1.1rem;
    }
    
    .requirements-card {
        padding: 30px;
    }
    
    .requirements-header h3 {
        font-size: 1.5rem;
    }
    
    .form-title h3 {
        font-size: 2rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .date-card {
        padding: 20px;
    }
    
    .date-card .date {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .admissions-hero-title {
        font-size: 1.8rem;
    }
    
    .admissions-image-badge {
        position: static;
        margin-top: 20px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .requirements-header {
        flex-direction: column;
        text-align: center;
    }
    
    .fee-header {
        padding: 20px;
    }
    
    .fee-header h4 {
        font-size: 1.5rem;
    }
    
    .application-form {
        padding: 30px 20px;
    }
    
    .form-section-title h4 {
        font-size: 1.2rem;
    }
}